home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 551-575 / disk_575 / pplib / install.script < prev    next >
Text File  |  1992-05-06  |  2KB  |  91 lines

  1.  
  2. ; Script file to install powerpacker.library 35.256
  3.  
  4. FailAt 20
  5.  
  6. Echo "*npowerpacker.library Installation Script*n"
  7. Version >NIL: LIBS:powerpacker.library
  8. If NOT ERROR
  9.     Echo "Version of powerpacker.library already installed:"
  10.     Version LIBS:powerpacker.library
  11.     Echo ""
  12. EndIf
  13.  
  14. Ask "Install powerpacker.library version 35.256 ?"
  15. If NOT WARN
  16.     Skip Aborted
  17. EndIf
  18.  
  19. Copy powerpacker.library LIBS:powerpacker.library
  20. Echo "*npowerpacker.library 35.256 copied to your LIBS: directory.*n"
  21.  
  22. Version >NIL: LIBS:reqtools.library
  23. If NOT ERROR
  24.     Echo "Version of reqtools.library already installed:"
  25.     Version LIBS:reqtools.library
  26.     Echo ""
  27. EndIf
  28.  
  29. Version >NIL: exec.library 37
  30. If NOT WARN
  31.     Echo "Your Amiga has AmigaDOS Release 2 (V37) or higher in ROM."
  32.     Ask "Install special Kickstart 2.0 version of reqtools.library (37.678) ?"
  33.     If WARN
  34.         Copy kick20/reqtools.library LIBS:reqtools.library
  35.         Avail >NIL: FLUSH
  36.         Echo "*nreqtools.library (2.0 version) copied to your Libs: directory."
  37.         Skip INSTALLED
  38.     EndIf
  39.     Avail >NIL: FLUSH
  40. EndIf
  41.  
  42. Ask "Install Kickstart 1.2/1.3 version of reqtools.library version (37.566) ?"
  43. If NOT WARN
  44.     Skip NoRT
  45. EndIf
  46.  
  47. Copy kick13/reqtools.library LIBS:reqtools.library
  48. Echo "*nreqtools.library copied to your Libs: directory."
  49.  
  50. Lab NoRT
  51.  
  52. Version >NIL: exec.library 37
  53. If NOT WARN
  54.     Skip INSTALLED
  55. EndIf
  56.  
  57. Echo "*nCopying 'LoadPPLib' to your C: directory..."
  58. Copy LoadPPLib c:
  59.  
  60. Echo "*nYour Amiga has Kickstart 1.2 or 1.3 in ROM."
  61. Echo "These versions have a few bugs that are fixed as of Kickstart 2.0."
  62. Echo "To circumvent these bugs it is important that your Amiga executes"
  63. Echo "the command 'LoadPPLib' each time it boots."
  64. Echo "Without this powerpacker.library may not operate correctly.*n"
  65. Echo "Shall I modify your 's:Startup-Sequence' so that it"
  66. Ask  "contains the 'LoadPPLib' command ?"
  67. If WARN
  68.     Echo >RAM:loadpplibtempfile "LoadPPLib"
  69.     Join RAM:loadpplibtempfile SYS:s/Startup-Sequence AS RAM:loadpplibtempfile2
  70.     Copy RAM:loadpplibtempfile2 SYS:s/Startup-Sequence
  71.     Delete RAM:loadpplibtempfile QUIET
  72.     Delete RAM:loadpplibtempfile2 QUIET
  73. Else
  74.     Echo "*nPlease modify your Startup-Sequence manually so that it contains"
  75.     Echo "the 'LoadPPLib' command."
  76. EndIf
  77.  
  78. Lab INSTALLED
  79.  
  80. Echo "*nInstallation complete.*n"
  81. Skip END
  82.  
  83. Lab ABORTED
  84.  
  85. Echo "*nInstallation aborted!*n"
  86.  
  87. Lab END
  88.  
  89. Wait 5
  90. EndCLI >NIL:
  91.